home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
PROGSCAL
/
VPASCAL.LZH
/
RUN.BAT
< prev
next >
Wrap
DOS Batch File
|
1985-08-08
|
384b
|
19 lines
echo off
:run1
cls
echo checking for errors...
if exist %1 goto doit
echo what file do you want to run?
goto exit
:doit
vispas <%1 >%1.com
if errorlevel 5 goto exit
if errorlevel 1 goto edit
visbug %1
:edit
if errorlevel 1 vised %1/e
if errorlevel 1 goto run1
:exit
g